home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / Papers / aSEPiA example source / Application / source / Document_DebugHeaders.pch++ < prev    next >
Encoding:
Text File  |  1999-06-25  |  1.1 KB  |  35 lines  |  [TEXT/CWIE]

  1. // ===========================================================================
  2. //    Document_DebugHeaders.pch++    ©1995-1998 Metrowerks Inc. All rights reserved.
  3. // ===========================================================================
  4. //
  5. //    Source for precompiled header for PowerPlant headers
  6. //
  7. //    This file #includes most header files for the PowerPlant library,
  8. //    as well as most of the Toolbox headers used by the PowerPlant library
  9. //    with all debugging symbols defined.
  10.  
  11.  
  12.     // This same file works for PowerPC and 68K. We check the target
  13.     // at compile time and specify the appropriate output file name.
  14.     
  15. #if __POWERPC__
  16.     #pragma precompile_target "Document_DebugHeadersPPC++"
  17.     
  18. #else
  19.     #pragma precompile_target "Document_DebugHeaders68K++"
  20. #endif
  21.  
  22. #pragma once on
  23.  
  24.     // Option for using PowerPlant namespace
  25.  
  26. #define PP_Uses_PowerPlant_Namespace        0    // off, don't use PowerPlant namespace
  27.  
  28.  
  29.     // establish some essential PowerPlant macros:
  30.     
  31. #define PP_StdDialogs_Option    PP_StdDialogs_Conditional    // use conditional dialog implementation
  32.  
  33.  
  34. #include <PP_DebugHeaders.cp>
  35.